home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Chat & Communication / Digsby build 37 / digsby_setup.exe / lib / jabber / objects / chatstates.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-13  |  2KB  |  48 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. import libxml2
  5. from pyxmpp.objects import StanzaPayloadObject
  6. from pyxmpp.xmlextra import common_doc, get_node_ns_uri
  7. CHATSTATES_NS = 'http://jabber.org/protocol/chatstates'
  8. VALID_CHATSTATES = [
  9.     'active',
  10.     'composing',
  11.     'gone',
  12.     'inactive',
  13.     'paused']
  14.  
  15. class ChatState(StanzaPayloadObject):
  16.     xml_element_namespace = CHATSTATES_NS
  17.     
  18.     def __init__(self, xmlnode_or_type):
  19.         if isinstance(xmlnode_or_type, libxml2.xmlNode):
  20.             self.from_xml(xmlnode_or_type)
  21.         else:
  22.             self.xml_element_name = xmlnode_or_type
  23.  
  24.     
  25.     def valid_state(self):
  26.         return self.xml_element_name in VALID_CHATSTATES
  27.  
  28.     
  29.     def from_xml(self, xmlnode):
  30.         self.xml_element_name = xmlnode.name
  31.         if xmlnode.type != 'element':
  32.             raise ValueError, 'XML node is not a chat state (not en element)'
  33.         
  34.         ns = get_node_ns_uri(xmlnode)
  35.         if ns or ns != self.xml_element_namespace or not self.valid_state():
  36.             raise ValueError, 'XML node is not a chat state descriptor'
  37.         
  38.  
  39.     
  40.     def __str__(self):
  41.         n = self.as_xml(doc = common_doc)
  42.         r = n.serialize()
  43.         n.unlinkNode()
  44.         n.freeNode()
  45.         return r
  46.  
  47.  
  48.